home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / postogrf.zip / LIPSDRVR.PAS < prev    next >
Pascal/Delphi Source File  |  1989-06-06  |  667b  |  30 lines

  1. {LIPSDRVR.PAS - modelled on Borland's DRIVERS.PAS}
  2.  
  3. unit LipsDrvr;
  4. { This unit links all the BGI graphics (except 3270 & fancier board)
  5.   driver into a single TPU file. This makes it easy to link the driver files
  6.   directly into an .EXE file. See Borland's GRLINK.PAS for more information.
  7. }
  8. interface
  9.  
  10. procedure ATTDriverProc;
  11. procedure CgaDriverProc;
  12. procedure EgaVgaDriverProc;
  13. procedure HercDriverProc;
  14.  
  15. implementation
  16.  
  17. procedure ATTDriverProc; external;
  18. {$L ATT.OBJ }
  19.  
  20. procedure CgaDriverProc; external;
  21. {$L CGA.OBJ }
  22.  
  23. procedure EgaVgaDriverProc; external;
  24. {$L EGAVGA.OBJ }
  25.  
  26. procedure HercDriverProc; external;
  27. {$L HERC.OBJ }
  28.  
  29. end.
  30.